From 81222c4a591142b719061cf199d85d70bf482a94 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sat, 21 Dec 2019 18:34:16 +0900 Subject: [PATCH 01/21] stream: remove async on SrcBuffer::new --- src/stream.rs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index db8cd1f..4cd21ac 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -21,7 +21,7 @@ struct SrcBuffer { } impl SrcBuffer { - async fn new(mut read: R) -> Option { + fn new(read: R) -> Option { let block_count = 64; let max_winsize = XD3_DEFAULT_SRCWINSZ; let blksize = max_winsize / block_count; @@ -32,15 +32,11 @@ impl SrcBuffer { let mut buf = Vec::with_capacity(max_winsize); buf.resize(max_winsize, 0u8); - - let read_len = read.read(&mut buf).await.ok()?; - debug!("SrcBuffer::new read_len={}", read_len); - Some(Self { src, read, - read_len, - eof_known: read_len != buf.len(), + read_len: 0, + eof_known: false, block_count, block_offset: 0, @@ -67,6 +63,11 @@ impl SrcBuffer { } async fn prepare(&mut self, idx: usize) -> Option<()> { + if self.read_len == 0 { + self.read_len = self.read.read(&mut self.buf).await.ok()?; + self.eof_known = self.read_len != self.buf.len(); + } + while !self.eof_known && idx >= self.block_offset + self.block_count { debug!( "prepare idx={}, block_offset={}, block_count={}", @@ -175,7 +176,7 @@ where let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; cfg.winsize = XD3_DEFAULT_WINSIZE as u32; - let mut src_buf = SrcBuffer::new(src).await?; + let mut src_buf = SrcBuffer::new(src)?; let ret = unsafe { binding::xd3_config_stream(stream, &mut cfg) }; if ret != 0 { From 8a59ae6e979d6ef50f673c1b89be4524a47b48b4 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sat, 21 Dec 2019 19:52:17 +0900 Subject: [PATCH 02/21] introduces ProcessState --- src/stream.rs | 186 +++++++++++++++++++++++++++++--------------------- 1 file changed, 108 insertions(+), 78 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 4cd21ac..d964f07 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -10,7 +10,7 @@ const XD3_DEFAULT_WINSIZE: usize = 1 << 23; const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; struct SrcBuffer { - src: binding::xd3_source, + src: Box, read: R, read_len: usize, eof_known: bool, @@ -26,7 +26,7 @@ impl SrcBuffer { let max_winsize = XD3_DEFAULT_SRCWINSZ; let blksize = max_winsize / block_count; - let mut src: binding::xd3_source = unsafe { std::mem::zeroed() }; + let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); src.blksize = blksize as u32; src.max_winsize = max_winsize as u64; @@ -126,18 +126,20 @@ impl SrcBuffer { } struct Xd3Stream { - inner: binding::xd3_stream, + inner: Box, } impl Xd3Stream { fn new() -> Self { let inner: binding::xd3_stream = unsafe { std::mem::zeroed() }; - return Self { inner }; + return Self { + inner: Box::new(inner), + }; } } impl Drop for Xd3Stream { fn drop(&mut self) { unsafe { - binding::xd3_free_stream(&mut self.inner as *mut _); + binding::xd3_free_stream(self.inner.as_mut() as *mut _); } } } @@ -160,42 +162,109 @@ where process_async(Mode::Encode, input, src, out).await } +#[derive(Clone, Copy)] enum Mode { Encode, Decode, } -async fn process_async(mode: Mode, mut input: R1, src: R2, mut out: W) -> Option<()> +async fn process_async(mode: Mode, mut input: R1, src: R2, mut output: W) -> Option<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - let mut stream = Xd3Stream::new(); - let stream = &mut stream.inner; - let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; - cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + let mut state = ProcessState::new(src)?; - let mut src_buf = SrcBuffer::new(src)?; + use binding::xd3_rvalues::*; - let ret = unsafe { binding::xd3_config_stream(stream, &mut cfg) }; - if ret != 0 { - return None; + loop { + match state.step(mode) { + XD3_INPUT => { + if state.eof { + break; + } + state.read_input(&mut input).await?; + } + XD3_OUTPUT => { + state.write_output(&mut output).await?; + } + XD3_GETSRCBLK => { + state.src_buf.getblk().await; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return None; + } + } } - let ret = unsafe { binding::xd3_set_source(stream, &mut src_buf.src) }; - if ret != 0 { - return None; + output.flush().await.ok() +} + +struct ProcessState { + stream: Xd3Stream, + src_buf: SrcBuffer, + input_buf: Vec, + eof: bool, +} + +impl ProcessState +where + R: AsyncRead + Unpin, +{ + fn new(src: R) -> Option { + let mut stream = Xd3Stream::new(); + let stream0 = stream.inner.as_mut(); + let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; + cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + + let mut src_buf = SrcBuffer::new(src)?; + + let ret = unsafe { binding::xd3_config_stream(stream0, &mut cfg) }; + if ret != 0 { + return None; + } + + let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; + if ret != 0 { + return None; + } + + let input_buf_size = stream0.winsize as usize; + debug!("stream.winsize={}", input_buf_size); + let mut input_buf = Vec::with_capacity(input_buf_size); + input_buf.resize(input_buf_size, 0u8); + + Some(Self { + stream, + src_buf, + input_buf, + eof: false, + }) + } + + fn step(&mut self, mode: Mode) -> binding::xd3_rvalues { + unsafe { + let stream = self.stream.inner.as_mut(); + std::mem::transmute(match mode { + Mode::Encode => binding::xd3_encode_input(stream), + Mode::Decode => binding::xd3_decode_input(stream), + }) + } } - let input_buf_size = stream.winsize as usize; - debug!("stream.winsize={}", input_buf_size); - let mut input_buf = Vec::with_capacity(input_buf_size); - input_buf.resize(input_buf_size, 0u8); - let mut eof = false; + async fn read_input(&mut self, mut input: R2) -> Option<()> + where + R2: Unpin + AsyncRead, + { + let input_buf = &mut self.input_buf; + let stream = self.stream.inner.as_mut(); - 'outer: while !eof { - let read_size = match input.read(&mut input_buf).await { + let read_size = match input.read(input_buf).await { Ok(n) => n, Err(_e) => { debug!("error on read: {:?}", _e); @@ -206,66 +275,27 @@ where if read_size == 0 { // xd3_set_flags stream.flags = binding::xd3_flags::XD3_FLUSH as i32; - eof = true; + self.eof = true; } // xd3_avail_input stream.next_in = input_buf.as_ptr(); stream.avail_in = read_size as u32; + Some(()) + } - 'inner: loop { - let ret: binding::xd3_rvalues = unsafe { - std::mem::transmute(match mode { - Mode::Encode => binding::xd3_encode_input(stream), - Mode::Decode => binding::xd3_decode_input(stream), - }) - }; - - if stream.msg != std::ptr::null() { - debug!("ret={:?}, msg={:?}", ret, unsafe { - std::ffi::CStr::from_ptr(stream.msg) - },); - } else { - debug!("ret={:?}", ret,); - } + async fn write_output(&mut self, mut output: W) -> Option<()> + where + W: Unpin + AsyncWrite, + { + let stream = self.stream.inner.as_mut(); - use binding::xd3_rvalues::*; - match ret { - XD3_INPUT => { - continue 'outer; - // - } - XD3_OUTPUT => { - let mut out_data = unsafe { - std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) - }; - while !out_data.is_empty() { - let n = match out.write(out_data).await { - Ok(n) => n, - Err(_e) => { - debug!("error on write: {:?}", _e); - return None; - } - }; - out_data = &out_data[n..]; - } - - // xd3_consume_output - stream.avail_out = 0; - } - XD3_GETSRCBLK => { - src_buf.getblk().await; - } - XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { - // do nothing - } - XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND - | XD3_UNIMPLEMENTED => { - return None; - } - } - } - } + let out_data = + unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) }; + output.write_all(out_data).await.ok()?; - out.flush().await.ok() + // xd3_consume_output + stream.avail_out = 0; + Some(()) + } } From 72a951c55a6d9bafb9e372ef1228d887e095d2e4 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 16 Feb 2020 20:07:34 +0900 Subject: [PATCH 03/21] fix build with streams --- Cargo.lock | 768 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 384 insertions(+), 386 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 73556de..ba90be3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,998 +2,996 @@ # It is not intended for manual editing. [[package]] name = "aho-corasick" -version = "0.7.6" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743ad5a418686aad3b87fd14c43badd828cf26e214a00f92a384291cf22e1811" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr", ] [[package]] name = "ansi_term" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "async-macros" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8", ] [[package]] name = "async-std" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "538ecb01eb64eecd772087e5b6f7540cbc917f047727339a472dafed2185b267" +dependencies = [ + "async-task", + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "futures-core", + "futures-io", + "futures-timer", + "kv-log-macro", + "log", + "memchr", + "mio", + "mio-uds", + "num_cpus", + "once_cell", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] name = "async-task" -version = "1.0.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ac2c016b079e771204030951c366db398864f5026f84a44dafb0ff20f02085d" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "winapi 0.3.8", ] [[package]] name = "atty" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi", + "libc", + "winapi 0.3.8", ] [[package]] name = "autocfg" version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" [[package]] name = "bindgen" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1c85344eb535a31b62f0af37be84441ba9e7f0f4111eb0530f43d15e513fe57" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags", + "cexpr", + "cfg-if", + "clang-sys", + "clap", + "env_logger", + "lazy_static", + "lazycell", + "log", + "peeking_take_while", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "which", ] [[package]] name = "bitflags" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "byteorder" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cc" -version = "1.0.48" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" [[package]] name = "cexpr" version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" dependencies = [ - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "nom", ] [[package]] name = "cfg-if" version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" [[package]] name = "clang-sys" version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" dependencies = [ - "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "glob", + "libc", + "libloading", ] [[package]] name = "clap" version = "2.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" dependencies = [ - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ansi_term", + "atty", + "bitflags", + "strsim", + "textwrap", + "unicode-width", + "vec_map", ] [[package]] name = "cloudabi" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags", ] [[package]] name = "crossbeam-channel" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" dependencies = [ - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils", ] [[package]] name = "crossbeam-deque" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" dependencies = [ - "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] name = "crossbeam-epoch" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-utils" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", + "cfg-if", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", ] [[package]] name = "crossbeam-utils" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", + "cfg-if", + "lazy_static", ] [[package]] name = "env_logger" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" dependencies = [ - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "atty", + "humantime", + "log", + "regex", + "termcolor", ] [[package]] name = "fuchsia-cprng" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" [[package]] name = "fuchsia-zircon" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags", + "fuchsia-zircon-sys", ] [[package]] name = "fuchsia-zircon-sys" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" [[package]] name = "futures" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780" dependencies = [ - "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] name = "futures-channel" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8" dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core", + "futures-sink", ] [[package]] name = "futures-core" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a" [[package]] name = "futures-executor" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba" dependencies = [ - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core", + "futures-task", + "futures-util", ] [[package]] name = "futures-io" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6" [[package]] name = "futures-macro" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7" dependencies = [ - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", ] [[package]] name = "futures-sink" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6" [[package]] name = "futures-task" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27" [[package]] name = "futures-timer" version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6" [[package]] name = "futures-util" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5" dependencies = [ - "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", ] [[package]] name = "glob" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" [[package]] name = "heck" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" dependencies = [ - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-segmentation", ] [[package]] name = "hermit-abi" -version = "0.1.3" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", ] [[package]] name = "humantime" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" dependencies = [ - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error", ] [[package]] name = "iovec" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", ] [[package]] name = "kernel32-sys" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8", + "winapi-build", ] [[package]] name = "kv-log-macro" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb" dependencies = [ - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log", ] [[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "lazycell" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" [[package]] name = "libc" version = "0.2.66" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" [[package]] name = "libloading" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" dependencies = [ - "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "cc", + "winapi 0.3.8", ] [[package]] name = "log" version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", ] [[package]] name = "memchr" -version = "2.2.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53445de381a1f436797497c61d851644d0e8e88e6140f22872ad33a704933978" [[package]] name = "memoffset" version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version", ] [[package]] name = "mio" version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "fuchsia-zircon", + "fuchsia-zircon-sys", + "iovec", + "kernel32-sys", + "libc", + "log", + "miow", + "net2", + "slab", + "winapi 0.2.8", ] [[package]] name = "mio-uds" version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" dependencies = [ - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec", + "libc", + "mio", ] [[package]] name = "miow" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys", + "net2", + "winapi 0.2.8", + "ws2_32-sys", ] [[package]] name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if", + "libc", + "winapi 0.3.8", ] [[package]] name = "nom" version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr", + "version_check", ] [[package]] name = "num_cpus" -version = "1.11.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" dependencies = [ - "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi", + "libc", ] [[package]] name = "once_cell" -version = "1.2.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b" [[package]] name = "peeking_take_while" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "pin-project-lite" -version = "0.1.1" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae" [[package]] name = "pin-utils" version = "0.1.0-alpha.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" [[package]] name = "pkg-config" version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" [[package]] name = "proc-macro-error" -version = "0.2.6" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "052b3c9af39c7e5e94245f820530487d19eb285faedcb40e0c3275132293f242" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-error-attr", + "proc-macro2", + "quote", + "rustversion", + "syn", +] + +[[package]] +name = "proc-macro-error-attr" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d175bef481c7902e63e3165627123fff3502f06ac043d3ef42d08c1246da9253" +dependencies = [ + "proc-macro2", + "quote", + "rustversion", + "syn", + "syn-mid", ] [[package]] name = "proc-macro-hack" version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "syn", ] [[package]] name = "proc-macro-nested" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" [[package]] name = "proc-macro2" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548" dependencies = [ - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid", ] [[package]] name = "quick-error" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quote" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", ] [[package]] name = "rand" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", + "libc", + "rand_chacha", + "rand_core 0.4.2", + "rand_hc", + "rand_isaac", + "rand_jitter", + "rand_os", + "rand_pcg", + "rand_xorshift", + "winapi 0.3.8", ] [[package]] name = "rand_chacha" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", + "rand_core 0.3.1", ] [[package]] name = "rand_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" dependencies = [ - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2", ] [[package]] name = "rand_core" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" [[package]] name = "rand_hc" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1", ] [[package]] name = "rand_isaac" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1", ] [[package]] name = "rand_jitter" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "rand_core 0.4.2", + "winapi 0.3.8", ] [[package]] name = "rand_os" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" dependencies = [ - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "cloudabi", + "fuchsia-cprng", + "libc", + "rand_core 0.4.2", + "rdrand", + "winapi 0.3.8", ] [[package]] name = "rand_pcg" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg", + "rand_core 0.4.2", ] [[package]] name = "rand_xorshift" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1", ] [[package]] name = "rdrand" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1", ] [[package]] name = "regex" -version = "1.3.1" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8" dependencies = [ - "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick", + "memchr", + "regex-syntax", + "thread_local", ] [[package]] name = "regex-syntax" -version = "0.6.12" +version = "0.6.14" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b28dfe3fe9badec5dbf0a79a9cccad2cfc2ab5484bdb3e44cbd1ae8b3ba2be06" [[package]] name = "rustc-hash" -version = "1.0.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc_version" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" dependencies = [ - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3bba175698996010c4f6dce5e7f173b6eb781fce25d2cfc45e27091ce0b79f6" +dependencies = [ + "proc-macro2", + "quote", + "syn", ] [[package]] name = "scopeguard" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" [[package]] name = "semver" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" dependencies = [ - "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "semver-parser", ] [[package]] name = "semver-parser" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "shlex" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" [[package]] name = "slab" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" [[package]] name = "strsim" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" [[package]] name = "structopt" -version = "0.3.5" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1bcbed7d48956fcbb5d80c6b95aedb553513de0a1b451ea92679d999c010e98" dependencies = [ - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "clap", + "lazy_static", + "structopt-derive", ] [[package]] name = "structopt-derive" -version = "0.3.5" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "095064aa1f5b94d14e635d0a5684cf140c43ae40a0fd990708d38f5d669e5f64" dependencies = [ - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "heck", + "proc-macro-error", + "proc-macro2", + "quote", + "syn", ] [[package]] name = "syn" -version = "1.0.11" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "syn-mid" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "syn", ] [[package]] name = "termcolor" -version = "1.0.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" dependencies = [ - "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util", ] [[package]] name = "textwrap" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" dependencies = [ - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width", ] [[package]] name = "thread_local" -version = "0.3.6" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static", ] [[package]] name = "unicode-segmentation" version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" [[package]] name = "unicode-width" version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" [[package]] name = "unicode-xid" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" [[package]] name = "vec_map" version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" [[package]] name = "version_check" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" [[package]] name = "which" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5475d47078209a02e60614f7ba5e645ef3ed60f771920ac1906d7c1cc65024c8" dependencies = [ - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", ] [[package]] name = "winapi" version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" [[package]] name = "winapi" version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" dependencies = [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] name = "winapi-build" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8", ] [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "wincolor" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "ws2_32-sys" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8", + "winapi-build", ] [[package]] name = "xdelta3" version = "0.1.5" dependencies = [ - "async-std 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bindgen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[metadata] -"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" -"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -"checksum async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "644a5a8de80f2085a1e7e57cd1544a2a7438f6e003c0790999bd43b92a77cdb2" -"checksum async-std 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "513ee3c49800679a319912340f5601afda9e72848d7dea3a48bab489e8c1a46f" -"checksum async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de6bd58f7b9cc49032559422595c81cbfcf04db2f2133592f70af19e258a1ced" -"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" -"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" -"checksum bindgen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1c85344eb535a31b62f0af37be84441ba9e7f0f4111eb0530f43d15e513fe57" -"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" -"checksum cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "f52a465a666ca3d838ebbf08b241383421412fe7ebb463527bba275526d89f76" -"checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" -"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -"checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" -"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" -"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -"checksum crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" -"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" -"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" -"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" -"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" -"checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" -"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" -"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6f16056ecbb57525ff698bb955162d0cd03bee84e6241c27ff75c08d8ca5987" -"checksum futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fcae98ca17d102fd8a3603727b9259fcf7fa4239b603d2142926189bc8999b86" -"checksum futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "79564c427afefab1dfb3298535b21eda083ef7935b4f0ecbfcb121f0aec10866" -"checksum futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e274736563f686a837a0568b478bdabfeaec2dca794b5649b04e2fe1627c231" -"checksum futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e676577d229e70952ab25f3945795ba5b16d63ca794ca9d2c860e5595d20b5ff" -"checksum futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52e7c56c15537adb4f76d0b7a76ad131cb4d2f4f32d3b0bcabcbe1c7c5e87764" -"checksum futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "171be33efae63c2d59e6dbba34186fe0d6394fb378069a76dfd80fdcffd43c16" -"checksum futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bae52d6b29cf440e298856fec3965ee6fa71b06aa7495178615953fd669e5f9" -"checksum futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6" -"checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" -"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" -"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb" -"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" -"checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" -"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" -"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" -"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" -"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" -"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" -"checksum once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "891f486f630e5c5a4916c7e16c4b24a53e78c860b646e9f8e005e4f16847bfed" -"checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -"checksum pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f0af6cbca0e6e3ce8692ee19fb8d734b641899e07b68eb73e9bbbd32f1703991" -"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" -"checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" -"checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" -"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" -"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" -"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" -"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" -"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" -"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" -"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" -"checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8" -"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" -"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" -"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" -"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" -"checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" -"checksum syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "dff0acdb207ae2fe6d5976617f887eb1e35a2ba52c13c7234c790960cdad9238" -"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" -"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" -"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" -"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" -"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" -"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" -"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" -"checksum which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5475d47078209a02e60614f7ba5e645ef3ed60f771920ac1906d7c1cc65024c8" -"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" -"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" -"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" -"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" -"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" + "async-std", + "bindgen", + "cc", + "env_logger", + "futures", + "futures-io", + "futures-util", + "libc", + "log", + "pkg-config", + "rand", + "structopt", +] diff --git a/Cargo.toml b/Cargo.toml index 57b00c9..f64484a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ maintenance = { status = "experimental" } [dependencies] futures-io = { version = "0.3", optional = true } -futures-util = { version = "0.3", optional = true } +futures-util = { version = "0.3", optional = true, features = ["io"] } libc = "0.2" log = "0.4" From d97eea0f6cea944729e4aaf9fa435cbb173382d3 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Mon, 17 Feb 2020 01:41:22 +0900 Subject: [PATCH 04/21] use std::io::Result instead of Option --- src/stream.rs | 62 +++++++++++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index d964f07..c3c1a5a 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -1,5 +1,6 @@ use futures_io::*; use futures_util::io::*; +use std::io; use std::ops::Range; use super::binding; @@ -21,7 +22,7 @@ struct SrcBuffer { } impl SrcBuffer { - fn new(read: R) -> Option { + fn new(read: R) -> io::Result { let block_count = 64; let max_winsize = XD3_DEFAULT_SRCWINSZ; let blksize = max_winsize / block_count; @@ -32,7 +33,8 @@ impl SrcBuffer { let mut buf = Vec::with_capacity(max_winsize); buf.resize(max_winsize, 0u8); - Some(Self { + + Ok(Self { src, read, read_len: 0, @@ -44,11 +46,11 @@ impl SrcBuffer { }) } - async fn fetch(&mut self) -> Option { + async fn fetch(&mut self) -> io::Result { let idx = self.block_offset; let r = self.block_range(idx); let block = &mut self.buf[r.clone()]; - let read_len = self.read.read(block).await.ok()?; + let read_len = self.read.read(block).await?; debug!( "range={:?}, block_len={}, read_len={}", r, @@ -59,12 +61,12 @@ impl SrcBuffer { self.block_offset += 1; self.read_len += read_len; - Some(read_len != block.len()) + Ok(read_len != block.len()) } - async fn prepare(&mut self, idx: usize) -> Option<()> { + async fn prepare(&mut self, idx: usize) -> io::Result<()> { if self.read_len == 0 { - self.read_len = self.read.read(&mut self.buf).await.ok()?; + self.read_len = self.read.read(&mut self.buf).await?; self.eof_known = self.read_len != self.buf.len(); } @@ -80,7 +82,7 @@ impl SrcBuffer { break; } } - Some(()) + Ok(()) } fn block_range(&self, idx: usize) -> Range { @@ -97,14 +99,14 @@ impl SrcBuffer { start..end } - async fn getblk(&mut self) { + async fn getblk(&mut self) -> io::Result<()> { debug!( "getsrcblk: curblkno={}, getblkno={}", self.src.curblkno, self.src.getblkno, ); let blkno = self.src.getblkno as usize; - self.prepare(blkno).await; + self.prepare(blkno).await?; let range = self.block_range(blkno); let src = &mut self.src; @@ -122,6 +124,7 @@ impl SrcBuffer { src.max_blkno = (self.block_offset + self.block_count - 1) as u64; src.onlastblk = (self.read_len % src.blksize as usize) as u32; } + Ok(()) } } @@ -144,7 +147,7 @@ impl Drop for Xd3Stream { } } -pub async fn decode_async(input: R1, src: R2, out: W) -> Option<()> +pub async fn decode_async(input: R1, src: R2, out: W) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, @@ -153,7 +156,7 @@ where process_async(Mode::Decode, input, src, out).await } -pub async fn encode_async(input: R1, src: R2, out: W) -> Option<()> +pub async fn encode_async(input: R1, src: R2, out: W) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, @@ -168,7 +171,12 @@ enum Mode { Decode, } -async fn process_async(mode: Mode, mut input: R1, src: R2, mut output: W) -> Option<()> +async fn process_async( + mode: Mode, + mut input: R1, + src: R2, + mut output: W, +) -> io::Result<()> where R1: AsyncRead + Unpin, R2: AsyncRead + Unpin, @@ -190,19 +198,19 @@ where state.write_output(&mut output).await?; } XD3_GETSRCBLK => { - state.src_buf.getblk().await; + state.src_buf.getblk().await?; } XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { // do nothing } XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND | XD3_UNIMPLEMENTED => { - return None; + return Err(io::Error::from(io::ErrorKind::Other)); } } } - output.flush().await.ok() + output.flush().await } struct ProcessState { @@ -216,7 +224,7 @@ impl ProcessState where R: AsyncRead + Unpin, { - fn new(src: R) -> Option { + fn new(src: R) -> io::Result { let mut stream = Xd3Stream::new(); let stream0 = stream.inner.as_mut(); let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; @@ -226,12 +234,12 @@ where let ret = unsafe { binding::xd3_config_stream(stream0, &mut cfg) }; if ret != 0 { - return None; + return Err(io::Error::from(io::ErrorKind::Other)); } let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; if ret != 0 { - return None; + return Err(io::Error::from(io::ErrorKind::Other)); } let input_buf_size = stream0.winsize as usize; @@ -239,7 +247,7 @@ where let mut input_buf = Vec::with_capacity(input_buf_size); input_buf.resize(input_buf_size, 0u8); - Some(Self { + Ok(Self { stream, src_buf, input_buf, @@ -257,7 +265,7 @@ where } } - async fn read_input(&mut self, mut input: R2) -> Option<()> + async fn read_input(&mut self, mut input: R2) -> io::Result<()> where R2: Unpin + AsyncRead, { @@ -268,10 +276,10 @@ where Ok(n) => n, Err(_e) => { debug!("error on read: {:?}", _e); - return None; + return Err(io::Error::from(io::ErrorKind::Other)); } }; - debug!("read_size={}", read_size); + if read_size == 0 { // xd3_set_flags stream.flags = binding::xd3_flags::XD3_FLUSH as i32; @@ -281,10 +289,10 @@ where // xd3_avail_input stream.next_in = input_buf.as_ptr(); stream.avail_in = read_size as u32; - Some(()) + Ok(()) } - async fn write_output(&mut self, mut output: W) -> Option<()> + async fn write_output(&mut self, mut output: W) -> io::Result<()> where W: Unpin + AsyncWrite, { @@ -292,10 +300,10 @@ where let out_data = unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) }; - output.write_all(out_data).await.ok()?; + output.write_all(out_data).await?; // xd3_consume_output stream.avail_out = 0; - Some(()) + Ok(()) } } From 18526be8f6b13de1fde8cc8df9deb0bc3743caeb Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Tue, 18 Feb 2020 18:28:38 +0900 Subject: [PATCH 05/21] fix crash with buffer overflow --- src/stream.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index c3c1a5a..f0f6c02 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -24,12 +24,12 @@ struct SrcBuffer { impl SrcBuffer { fn new(read: R) -> io::Result { let block_count = 64; - let max_winsize = XD3_DEFAULT_SRCWINSZ; + let max_winsize = XD3_DEFAULT_SRCWINSZ * 2; let blksize = max_winsize / block_count; let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); src.blksize = blksize as u32; - src.max_winsize = max_winsize as u64; + src.max_winsize = (max_winsize / 2) as u64; let mut buf = Vec::with_capacity(max_winsize); buf.resize(max_winsize, 0u8); @@ -87,7 +87,13 @@ impl SrcBuffer { fn block_range(&self, idx: usize) -> Range { debug!("idx={}, offset={}", idx, self.block_offset); - assert!(idx >= self.block_offset && idx < self.block_offset + self.block_count); + assert!( + idx >= self.block_offset && idx < self.block_offset + self.block_count, + "invalid block, idx={}, offset={}, count={}", + idx, + self.block_offset, + self.block_count + ); let idx = idx % self.block_count; let start = (self.src.blksize as usize) * idx; From 8e8cc94af2c6718573b1103451a8e0ada82cf0ec Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 23 Feb 2020 17:49:21 +0900 Subject: [PATCH 06/21] detailed error message --- src/stream.rs | 63 ++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 55 insertions(+), 8 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index f0f6c02..5fbb088 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -134,6 +134,38 @@ impl SrcBuffer { } } +struct Xd3Config { + inner: Box, +} + +impl Xd3Config { + pub fn new() -> Self { + let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; + cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + + let config = Self { + inner: Box::new(cfg), + }; + config + } + + #[allow(unused)] + fn set_level(&mut self, mut level: i32) { + use binding::xd3_flags::*; + + if level < 0 { + level = 0; + } + if level > 9 { + level = 9; + } + let flags = (self.inner.flags & (!(XD3_COMPLEVEL_MASK as i32))) + | (level << XD3_COMPLEVEL_SHIFT as i32); + + self.inner.flags = flags; + } +} + struct Xd3Stream { inner: Box, } @@ -193,7 +225,8 @@ where use binding::xd3_rvalues::*; loop { - match state.step(mode) { + let res = state.step(mode); + match res { XD3_INPUT => { if state.eof { break; @@ -211,7 +244,7 @@ where } XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND | XD3_UNIMPLEMENTED => { - return Err(io::Error::from(io::ErrorKind::Other)); + return Err(io::Error::new(io::ErrorKind::Other, format!("{:?}", res))); } } } @@ -220,6 +253,8 @@ where } struct ProcessState { + #[allow(unused)] + cfg: Xd3Config, stream: Xd3Stream, src_buf: SrcBuffer, input_buf: Vec, @@ -233,19 +268,30 @@ where fn new(src: R) -> io::Result { let mut stream = Xd3Stream::new(); let stream0 = stream.inner.as_mut(); - let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; - cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + + let mut cfg = Xd3Config::new(); + let cfg0 = cfg.inner.as_mut(); let mut src_buf = SrcBuffer::new(src)?; - let ret = unsafe { binding::xd3_config_stream(stream0, &mut cfg) }; + let ret = unsafe { binding::xd3_config_stream(stream0, cfg0) }; if ret != 0 { - return Err(io::Error::from(io::ErrorKind::Other)); + let err = if stream0.msg == std::ptr::null() { + Error::new(io::ErrorKind::Other, "xd3_config_stream: null") + } else { + let msg = unsafe { std::ffi::CStr::from_ptr(stream0.msg) }; + + Error::new( + io::ErrorKind::Other, + format!("xd3_config_stream: {:?}, flags={:0b}", msg, stream0.flags), + ) + }; + return Err(err); } let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; if ret != 0 { - return Err(io::Error::from(io::ErrorKind::Other)); + return Err(io::Error::new(io::ErrorKind::Other, "xd3_set_source")); } let input_buf_size = stream0.winsize as usize; @@ -254,6 +300,7 @@ where input_buf.resize(input_buf_size, 0u8); Ok(Self { + cfg, stream, src_buf, input_buf, @@ -282,7 +329,7 @@ where Ok(n) => n, Err(_e) => { debug!("error on read: {:?}", _e); - return Err(io::Error::from(io::ErrorKind::Other)); + return Err(io::Error::new(io::ErrorKind::Other, "xd3: read_input")); } }; From d89ba2bcb831da824f5833520d9dba47410c6f42 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 23 Feb 2020 20:39:20 +0900 Subject: [PATCH 07/21] fix crash on flush --- src/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.rs b/src/stream.rs index 5fbb088..0c8328f 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -335,7 +335,7 @@ where if read_size == 0 { // xd3_set_flags - stream.flags = binding::xd3_flags::XD3_FLUSH as i32; + stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; self.eof = true; } From 3c5864ab13779b5aa446df534429055da4ab5d5b Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Fri, 28 Feb 2020 21:18:48 +0900 Subject: [PATCH 08/21] ProcessState to accept config --- head | 188316 +++++++++++++++++++++++++++++++++++++++++++++++ out.sql | 0 src/rw.rs | 53 + src/stream.rs | 18 +- ws | 1 + 5 files changed, 188381 insertions(+), 7 deletions(-) create mode 100644 head create mode 100644 out.sql create mode 100644 src/rw.rs create mode 120000 ws diff --git a/head b/head new file mode 100644 index 0000000..0745966 --- /dev/null +++ b/head @@ -0,0 +1,188316 @@ +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] stream.winsize=8388608 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] read_size=185625 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GOTHEADER +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:03Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] ret=XD3_GETSRCBLK, msg="getblk source input" +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] getsrcblk: curblkno=0, getblkno=0 +[2019-12-21T09:17:04Z DEBUG xdelta3::stream] idx=0, offset=0 diff --git a/out.sql b/out.sql new file mode 100644 index 0000000..e69de29 diff --git a/src/rw.rs b/src/rw.rs new file mode 100644 index 0000000..583bf95 --- /dev/null +++ b/src/rw.rs @@ -0,0 +1,53 @@ +/* +use std::pin::Pin; +use std::task::{Context, Poll}; + +struct Xdelta3Reader { + input: R1, + state: ProcessState, + mode: Mode, +} + +impl AsyncRead for Xdelta3Reader +where + R1: Unpin + AsyncRead, + R2: Unpin + AsyncRead, +{ + fn poll_read( + self: Pin<&mut Self>, + cx: &mut Context<'_>, + buf: &mut [u8], + ) -> Poll> { + use binding::xd3_rvalues::*; + + let mode = self.as_ref().mode; + let state = &mut self.as_mut().state; + + loop { + match state.step(mode) { + XD3_INPUT => { + if state.eof { + break; + } + // state.read_input(&mut input).await?; + } + XD3_OUTPUT => { + // state.write_output(&mut output).await?; + } + XD3_GETSRCBLK => { + // state.src_buf.getblk().await; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return Poll::Ready(Err(std::io::Error::new(std::io::ErrorKind::Other))); + } + } + } + + unimplemented!(); + } +} +*/ diff --git a/src/stream.rs b/src/stream.rs index 0c8328f..822065b 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -6,9 +6,11 @@ use std::ops::Range; use super::binding; use log::debug; -#[allow(unused)] const XD3_DEFAULT_WINSIZE: usize = 1 << 23; const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; +#[allow(unused)] +const XD3_DEFAULT_ALLOCSIZE: usize = 1 << 14; +const XD3_DEFAULT_SPREVSZ: usize = 1 << 18; struct SrcBuffer { src: Box, @@ -23,13 +25,13 @@ struct SrcBuffer { impl SrcBuffer { fn new(read: R) -> io::Result { - let block_count = 64; - let max_winsize = XD3_DEFAULT_SRCWINSZ * 2; + let block_count = 32; + let max_winsize = XD3_DEFAULT_SRCWINSZ; let blksize = max_winsize / block_count; let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); src.blksize = blksize as u32; - src.max_winsize = (max_winsize / 2) as u64; + src.max_winsize = max_winsize as u64; let mut buf = Vec::with_capacity(max_winsize); buf.resize(max_winsize, 0u8); @@ -142,6 +144,7 @@ impl Xd3Config { pub fn new() -> Self { let mut cfg: binding::xd3_config = unsafe { std::mem::zeroed() }; cfg.winsize = XD3_DEFAULT_WINSIZE as u32; + cfg.sprevsz = XD3_DEFAULT_SPREVSZ as u32; let config = Self { inner: Box::new(cfg), @@ -220,7 +223,8 @@ where R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - let mut state = ProcessState::new(src)?; + let cfg = Xd3Config::new(); + let mut state = ProcessState::new(cfg, src)?; use binding::xd3_rvalues::*; @@ -265,11 +269,10 @@ impl ProcessState where R: AsyncRead + Unpin, { - fn new(src: R) -> io::Result { + fn new(mut cfg: Xd3Config, src: R) -> io::Result { let mut stream = Xd3Stream::new(); let stream0 = stream.inner.as_mut(); - let mut cfg = Xd3Config::new(); let cfg0 = cfg.inner.as_mut(); let mut src_buf = SrcBuffer::new(src)?; @@ -288,6 +291,7 @@ where }; return Err(err); } + log::info!("config={:?}", cfg0); let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; if ret != 0 { diff --git a/ws b/ws new file mode 120000 index 0000000..3783d31 --- /dev/null +++ b/ws @@ -0,0 +1 @@ +/home/jihyun/r/g/open-vcdiff/build/ws/ \ No newline at end of file From 12447fdb633e3a313a28dd3f60d260aa0cc3e86a Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 1 Mar 2020 02:33:59 +0900 Subject: [PATCH 09/21] use btreemap instead of continuous buffer --- src/stream.rs | 116 ++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 65 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 822065b..ae0610b 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -12,15 +12,20 @@ const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; const XD3_DEFAULT_ALLOCSIZE: usize = 1 << 14; const XD3_DEFAULT_SPREVSZ: usize = 1 << 18; +struct CacheEntry { + len: usize, + buf: Box<[u8]>, +} + struct SrcBuffer { src: Box, read: R, read_len: usize, eof_known: bool, - block_count: usize, block_offset: usize, - buf: Box<[u8]>, + block_len: usize, + cache: BTreeMap, } impl SrcBuffer { @@ -29,84 +34,48 @@ impl SrcBuffer { let max_winsize = XD3_DEFAULT_SRCWINSZ; let blksize = max_winsize / block_count; + let cache = BTreeMap::new(); + let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); src.blksize = blksize as u32; src.max_winsize = max_winsize as u64; - let mut buf = Vec::with_capacity(max_winsize); - buf.resize(max_winsize, 0u8); - Ok(Self { src, read, read_len: 0, eof_known: false, - block_count, block_offset: 0, - buf: buf.into_boxed_slice(), + block_len: blksize, + cache, }) } - async fn fetch(&mut self) -> io::Result { - let idx = self.block_offset; - let r = self.block_range(idx); - let block = &mut self.buf[r.clone()]; - let read_len = self.read.read(block).await?; - debug!( - "range={:?}, block_len={}, read_len={}", - r, - block.len(), - read_len - ); - - self.block_offset += 1; - self.read_len += read_len; - - Ok(read_len != block.len()) - } - - async fn prepare(&mut self, idx: usize) -> io::Result<()> { - if self.read_len == 0 { - self.read_len = self.read.read(&mut self.buf).await?; - self.eof_known = self.read_len != self.buf.len(); - } - - while !self.eof_known && idx >= self.block_offset + self.block_count { - debug!( - "prepare idx={}, block_offset={}, block_count={}", - idx, self.block_offset, self.block_count - ); - let eof = self.fetch().await?; - if eof { - debug!("eof"); - self.eof_known = true; + async fn fetch(&mut self) -> Result<()> { + let mut buf = if self.cache.len() == self.block_offset + 1 { + let mut key = 0usize; + for (k, _v) in &self.cache { + key = *k; break; } + self.cache.remove(&key).unwrap().buf + } else { + let mut v = Vec::with_capacity(self.block_len); + v.resize(self.block_len, 0); + v.into_boxed_slice() + }; + + let len = self.read.read(&mut buf).await?; + if len == 0 { + self.eof_known = true; } + let entry = CacheEntry { len, buf }; + self.cache.insert(self.block_offset, entry); + self.block_offset += 1; Ok(()) } - fn block_range(&self, idx: usize) -> Range { - debug!("idx={}, offset={}", idx, self.block_offset); - assert!( - idx >= self.block_offset && idx < self.block_offset + self.block_count, - "invalid block, idx={}, offset={}, count={}", - idx, - self.block_offset, - self.block_count - ); - - let idx = idx % self.block_count; - let start = (self.src.blksize as usize) * idx; - let end = (self.src.blksize as usize) * (idx + 1); - - let start = start.min(self.read_len); - let end = end.min(self.read_len); - - start..end - } - async fn getblk(&mut self) -> io::Result<()> { debug!( "getsrcblk: curblkno={}, getblkno={}", @@ -114,22 +83,39 @@ impl SrcBuffer { ); let blkno = self.src.getblkno as usize; - self.prepare(blkno).await?; - let range = self.block_range(blkno); + + let entry = loop { + match self.cache.get_mut(&blkno) { + Some(entry) => break entry, + None => { + if blkno < self.block_offset { + eprintln!("invalid blkno={}, offset={}", blkno, self.block_offset); + for (k, _v) in &self.cache { + eprintln!("key={:?}", k); + } + panic!("invalid blkno"); + } + + self.fetch().await?; + continue; + } + } + }; let src = &mut self.src; - let data = &self.buf[range]; + let buf_len = entry.len; + let data = &entry.buf[..buf_len]; src.curblkno = src.getblkno; src.curblk = data.as_ptr(); - src.onblk = data.len() as u32; + src.onblk = buf_len as u32; src.eof_known = self.eof_known as i32; if !self.eof_known { src.max_blkno = src.curblkno; src.onlastblk = src.onblk; } else { - src.max_blkno = (self.block_offset + self.block_count - 1) as u64; + src.max_blkno = (self.block_offset - 1) as u64; src.onlastblk = (self.read_len % src.blksize as usize) as u32; } Ok(()) From 5b30b79d00c102038e968a77a12b0d54bc04bc2a Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 1 Mar 2020 02:36:36 +0900 Subject: [PATCH 10/21] allow caller to set config --- src/stream.rs | 58 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 46 insertions(+), 12 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index ae0610b..7b63c29 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -1,15 +1,19 @@ use futures_io::*; use futures_util::io::*; +use std::collections::BTreeMap; use std::io; -use std::ops::Range; use super::binding; use log::debug; +pub use binding::xd3_smatch_cfg; + +#[allow(unused)] const XD3_DEFAULT_WINSIZE: usize = 1 << 23; const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; #[allow(unused)] const XD3_DEFAULT_ALLOCSIZE: usize = 1 << 14; +#[allow(unused)] const XD3_DEFAULT_SPREVSZ: usize = 1 << 18; struct CacheEntry { @@ -122,7 +126,7 @@ impl SrcBuffer { } } -struct Xd3Config { +pub struct Xd3Config { inner: Box, } @@ -138,6 +142,34 @@ impl Xd3Config { config } + pub fn window_size(mut self, winsize: u32) -> Self { + let inner = self.inner.as_mut(); + inner.winsize = winsize.next_power_of_two(); + self + } + + pub fn sprev_size(mut self, sprevsz: u32) -> Self { + let inner = self.inner.as_mut(); + inner.sprevsz = sprevsz.next_power_of_two(); + self + } + + pub fn no_compress(mut self, no_compress: bool) -> Self { + let inner = self.inner.as_mut(); + if no_compress { + inner.flags |= binding::xd3_flags::XD3_NOCOMPRESS as i32; + } else { + inner.flags &= !(binding::xd3_flags::XD3_NOCOMPRESS as i32); + } + self + } + + pub fn set_smatch_config(mut self, smatch_cfg: binding::xd3_smatch_cfg) -> Self { + let inner = self.inner.as_mut(); + inner.smatch_cfg = smatch_cfg; + self + } + #[allow(unused)] fn set_level(&mut self, mut level: i32) { use binding::xd3_flags::*; @@ -180,7 +212,8 @@ where R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - process_async(Mode::Decode, input, src, out).await + let cfg = Xd3Config::new(); + process_async(cfg, ProcessMode::Decode, input, src, out).await } pub async fn encode_async(input: R1, src: R2, out: W) -> io::Result<()> @@ -189,17 +222,19 @@ where R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - process_async(Mode::Encode, input, src, out).await + let cfg = Xd3Config::new(); + process_async(cfg, ProcessMode::Encode, input, src, out).await } #[derive(Clone, Copy)] -enum Mode { +pub enum ProcessMode { Encode, Decode, } -async fn process_async( - mode: Mode, +pub async fn process_async( + cfg: Xd3Config, + mode: ProcessMode, mut input: R1, src: R2, mut output: W, @@ -209,7 +244,6 @@ where R2: AsyncRead + Unpin, W: AsyncWrite + Unpin, { - let cfg = Xd3Config::new(); let mut state = ProcessState::new(cfg, src)?; use binding::xd3_rvalues::*; @@ -277,7 +311,7 @@ where }; return Err(err); } - log::info!("config={:?}", cfg0); + log::trace!("config={:?}", cfg0); let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; if ret != 0 { @@ -298,12 +332,12 @@ where }) } - fn step(&mut self, mode: Mode) -> binding::xd3_rvalues { + fn step(&mut self, mode: ProcessMode) -> binding::xd3_rvalues { unsafe { let stream = self.stream.inner.as_mut(); std::mem::transmute(match mode { - Mode::Encode => binding::xd3_encode_input(stream), - Mode::Decode => binding::xd3_decode_input(stream), + ProcessMode::Encode => binding::xd3_encode_input(stream), + ProcessMode::Decode => binding::xd3_decode_input(stream), }) } } From ecbe325a868c274bff0e66841ab3eda97552a4f0 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 1 Mar 2020 02:54:52 +0900 Subject: [PATCH 11/21] config: source_window_size --- src/stream.rs | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 7b63c29..63eb807 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -10,7 +10,7 @@ pub use binding::xd3_smatch_cfg; #[allow(unused)] const XD3_DEFAULT_WINSIZE: usize = 1 << 23; -const XD3_DEFAULT_SRCWINSZ: usize = 1 << 26; +const XD3_DEFAULT_SRCWINSZ: u64 = 1 << 26; #[allow(unused)] const XD3_DEFAULT_ALLOCSIZE: usize = 1 << 14; #[allow(unused)] @@ -33,9 +33,9 @@ struct SrcBuffer { } impl SrcBuffer { - fn new(read: R) -> io::Result { + fn new(cfg: &Xd3Config, read: R) -> io::Result { let block_count = 32; - let max_winsize = XD3_DEFAULT_SRCWINSZ; + let max_winsize = cfg.source_window_size; let blksize = max_winsize / block_count; let cache = BTreeMap::new(); @@ -51,7 +51,7 @@ impl SrcBuffer { eof_known: false, block_offset: 0, - block_len: blksize, + block_len: blksize as usize, cache, }) } @@ -128,6 +128,9 @@ impl SrcBuffer { pub struct Xd3Config { inner: Box, + + // source config + source_window_size: u64, } impl Xd3Config { @@ -138,6 +141,7 @@ impl Xd3Config { let config = Self { inner: Box::new(cfg), + source_window_size: XD3_DEFAULT_SRCWINSZ, }; config } @@ -154,6 +158,11 @@ impl Xd3Config { self } + pub fn source_window_size(mut self, source_window_size: u64) -> Self { + self.source_window_size = source_window_size.next_power_of_two(); + self + } + pub fn no_compress(mut self, no_compress: bool) -> Self { let inner = self.inner.as_mut(); if no_compress { @@ -293,10 +302,9 @@ where let mut stream = Xd3Stream::new(); let stream0 = stream.inner.as_mut(); + let mut src_buf = SrcBuffer::new(&cfg, src)?; let cfg0 = cfg.inner.as_mut(); - let mut src_buf = SrcBuffer::new(src)?; - let ret = unsafe { binding::xd3_config_stream(stream0, cfg0) }; if ret != 0 { let err = if stream0.msg == std::ptr::null() { From 55a403620999b62e103e8deb87d851b1bfb2ecc7 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 1 Mar 2020 18:14:49 +0900 Subject: [PATCH 12/21] Xd3Config::level --- src/stream.rs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 63eb807..522d3b1 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -42,7 +42,7 @@ impl SrcBuffer { let mut src: Box = Box::new(unsafe { std::mem::zeroed() }); src.blksize = blksize as u32; - src.max_winsize = max_winsize as u64; + src.max_winsize = max_winsize; Ok(Self { src, @@ -126,6 +126,7 @@ impl SrcBuffer { } } +#[derive(Debug)] pub struct Xd3Config { inner: Box, @@ -179,8 +180,7 @@ impl Xd3Config { self } - #[allow(unused)] - fn set_level(&mut self, mut level: i32) { + pub fn level(mut self, mut level: i32) -> Self { use binding::xd3_flags::*; if level < 0 { @@ -193,6 +193,7 @@ impl Xd3Config { | (level << XD3_COMPLEVEL_SHIFT as i32); self.inner.flags = flags; + self } } @@ -290,6 +291,7 @@ struct ProcessState { cfg: Xd3Config, stream: Xd3Stream, src_buf: SrcBuffer, + input_buf: Vec, eof: bool, } @@ -299,13 +301,12 @@ where R: AsyncRead + Unpin, { fn new(mut cfg: Xd3Config, src: R) -> io::Result { + // log::info!("ProcessState::new config={:?}", cfg); + let mut stream = Xd3Stream::new(); let stream0 = stream.inner.as_mut(); - let mut src_buf = SrcBuffer::new(&cfg, src)?; - let cfg0 = cfg.inner.as_mut(); - - let ret = unsafe { binding::xd3_config_stream(stream0, cfg0) }; + let ret = unsafe { binding::xd3_config_stream(stream0, cfg.inner.as_mut()) }; if ret != 0 { let err = if stream0.msg == std::ptr::null() { Error::new(io::ErrorKind::Other, "xd3_config_stream: null") @@ -319,8 +320,8 @@ where }; return Err(err); } - log::trace!("config={:?}", cfg0); + let mut src_buf = SrcBuffer::new(&cfg, src)?; let ret = unsafe { binding::xd3_set_source(stream0, src_buf.src.as_mut()) }; if ret != 0 { return Err(io::Error::new(io::ErrorKind::Other, "xd3_set_source")); From 0713fd19eed23648d97cd920dc9fad2274fc9853 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 15 Mar 2020 20:55:42 +0900 Subject: [PATCH 13/21] adjust log level --- src/stream.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 522d3b1..4c3f2cb 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -81,9 +81,10 @@ impl SrcBuffer { } async fn getblk(&mut self) -> io::Result<()> { - debug!( + trace!( "getsrcblk: curblkno={}, getblkno={}", - self.src.curblkno, self.src.getblkno, + self.src.curblkno, + self.src.getblkno, ); let blkno = self.src.getblkno as usize; @@ -328,7 +329,7 @@ where } let input_buf_size = stream0.winsize as usize; - debug!("stream.winsize={}", input_buf_size); + trace!("stream.winsize={}", input_buf_size); let mut input_buf = Vec::with_capacity(input_buf_size); input_buf.resize(input_buf_size, 0u8); From df61eb75bdf792645a238ebf10706d547327f6b1 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 15 Mar 2020 21:04:13 +0900 Subject: [PATCH 14/21] fix compile error --- src/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.rs b/src/stream.rs index 4c3f2cb..7ea9aa0 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -4,7 +4,7 @@ use std::collections::BTreeMap; use std::io; use super::binding; -use log::debug; +use log::{debug, trace}; pub use binding::xd3_smatch_cfg; From e2489567064845e472c79c05597ff08c6fff276e Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 15 Mar 2020 21:57:27 +0900 Subject: [PATCH 15/21] SrcBuffer::new out from AsyncRead bound --- src/stream.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stream.rs b/src/stream.rs index 7ea9aa0..a584180 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -32,7 +32,7 @@ struct SrcBuffer { cache: BTreeMap, } -impl SrcBuffer { +impl SrcBuffer { fn new(cfg: &Xd3Config, read: R) -> io::Result { let block_count = 32; let max_winsize = cfg.source_window_size; @@ -55,7 +55,9 @@ impl SrcBuffer { cache, }) } +} +impl SrcBuffer { async fn fetch(&mut self) -> Result<()> { let mut buf = if self.cache.len() == self.block_offset + 1 { let mut key = 0usize; From e5a4dac00edcc426930234b022623c48f8774350 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 15 Mar 2020 23:09:06 +0900 Subject: [PATCH 16/21] try to fill buffer --- src/stream.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index a584180..d174ac9 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -72,11 +72,19 @@ impl SrcBuffer { v.into_boxed_slice() }; - let len = self.read.read(&mut buf).await?; - if len == 0 { - self.eof_known = true; + let mut read_len = 0; + + while read_len != buf.len() { + let len = self.read.read(&mut buf[read_len..]).await?; + if len == 0 { + self.eof_known = true; + break; + } else { + read_len += len; + } } - let entry = CacheEntry { len, buf }; + + let entry = CacheEntry { len: read_len, buf }; self.cache.insert(self.block_offset, entry); self.block_offset += 1; Ok(()) From 6a0ca5ded21899272b39a84d2cebc152dd0480ce Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 29 Mar 2020 19:07:36 +0900 Subject: [PATCH 17/21] mark struct send --- src/stream.rs | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index d174ac9..472a7e5 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -31,6 +31,7 @@ struct SrcBuffer { block_len: usize, cache: BTreeMap, } +unsafe impl Send for SrcBuffer {} impl SrcBuffer { fn new(cfg: &Xd3Config, read: R) -> io::Result { @@ -67,8 +68,7 @@ impl SrcBuffer { } self.cache.remove(&key).unwrap().buf } else { - let mut v = Vec::with_capacity(self.block_len); - v.resize(self.block_len, 0); + let v = vec![0u8; self.block_len]; v.into_boxed_slice() }; @@ -144,6 +144,7 @@ pub struct Xd3Config { // source config source_window_size: u64, } +unsafe impl Send for Xd3Config {} impl Xd3Config { pub fn new() -> Self { @@ -226,6 +227,7 @@ impl Drop for Xd3Stream { } } } +unsafe impl Send for Xd3Stream {} pub async fn decode_async(input: R1, src: R2, out: W) -> io::Result<()> where @@ -367,7 +369,6 @@ where R2: Unpin + AsyncRead, { let input_buf = &mut self.input_buf; - let stream = self.stream.inner.as_mut(); let read_size = match input.read(input_buf).await { Ok(n) => n, @@ -377,15 +378,18 @@ where } }; - if read_size == 0 { - // xd3_set_flags - stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; - self.eof = true; + { + let stream = self.stream.inner.as_mut(); + if read_size == 0 { + // xd3_set_flags + stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; + self.eof = true; + } + // xd3_avail_input + stream.next_in = input_buf.as_ptr(); + stream.avail_in = read_size as u32; } - // xd3_avail_input - stream.next_in = input_buf.as_ptr(); - stream.avail_in = read_size as u32; Ok(()) } @@ -393,14 +397,14 @@ where where W: Unpin + AsyncWrite, { - let stream = self.stream.inner.as_mut(); - - let out_data = - unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) }; + let out_data = { + let stream = self.stream.inner.as_mut(); + unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) } + }; output.write_all(out_data).await?; // xd3_consume_output - stream.avail_out = 0; + self.stream.inner.as_mut().avail_out = 0; Ok(()) } } From 4a936ab5bc8340fb432f931948590fbf8cca0a09 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 18 Feb 2024 15:57:44 +0900 Subject: [PATCH 18/21] non-async api --- src/lib.rs | 47 ++++++++++++ src/stream.rs | 199 ++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 233 insertions(+), 13 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4f4b0c8..10a85a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -128,3 +128,50 @@ pub fn decode(input: &[u8], src: &[u8]) -> Option> { } } } + +#[cfg(test)] +mod test { + use super::*; + + #[test] + fn roundtrip() { + let input = b"Hello, world! Hello, world!"; + let src = b"Hello, world!"; + + let patch = encode(input, src).unwrap(); + let output = decode(&patch, src).unwrap(); + + assert_eq!(output.as_slice(), input); + } + + #[test] + fn roundtrip_process() { + use std::io::*; + use stream::*; + + let src = b"Hello, world!".to_vec(); + let input = b"Hello, world! Hello, world!".to_vec(); + + let mut patch = Vec::new(); + process( + Xd3Config::new(), + ProcessMode::Encode, + input.as_slice(), + src.as_slice(), + &mut patch, + ) + .unwrap(); + + let mut output = Vec::new(); + process( + Xd3Config::new(), + ProcessMode::Decode, + patch.as_slice(), + src.as_slice(), + &mut output, + ) + .unwrap(); + + assert_eq!(output, input); + } +} diff --git a/src/stream.rs b/src/stream.rs index 472a7e5..90563b9 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -58,8 +58,89 @@ impl SrcBuffer { } } +impl SrcBuffer {} + +impl SrcBuffer { + fn fetch(&mut self) -> Result<()> { + let mut buf = if self.cache.len() == self.block_offset + 1 { + let mut key = 0usize; + for (k, _v) in &self.cache { + key = *k; + break; + } + self.cache.remove(&key).unwrap().buf + } else { + let v = vec![0u8; self.block_len]; + v.into_boxed_slice() + }; + + let mut read_len = 0; + + while read_len != buf.len() { + let len = self.read.read(&mut buf[read_len..])?; + if len == 0 { + self.eof_known = true; + break; + } else { + read_len += len; + } + } + + let entry = CacheEntry { len: read_len, buf }; + self.cache.insert(self.block_offset, entry); + self.block_offset += 1; + Ok(()) + } + + fn getblk(&mut self) -> io::Result<()> { + trace!( + "getsrcblk: curblkno={}, getblkno={}", + self.src.curblkno, + self.src.getblkno, + ); + + let blkno = self.src.getblkno as usize; + + let entry = loop { + match self.cache.get_mut(&blkno) { + Some(entry) => break entry, + None => { + if blkno < self.block_offset { + eprintln!("invalid blkno={}, offset={}", blkno, self.block_offset); + for (k, _v) in &self.cache { + eprintln!("key={:?}", k); + } + panic!("invalid blkno"); + } + + self.fetch()?; + continue; + } + } + }; + + let src = &mut self.src; + let buf_len = entry.len; + let data = &entry.buf[..buf_len]; + + src.curblkno = src.getblkno; + src.curblk = data.as_ptr(); + src.onblk = buf_len as u32; + + src.eof_known = self.eof_known as i32; + if !self.eof_known { + src.max_blkno = src.curblkno; + src.onlastblk = src.onblk; + } else { + src.max_blkno = (self.block_offset - 1) as u64; + src.onlastblk = (self.read_len % src.blksize as usize) as u32; + } + Ok(()) + } +} + impl SrcBuffer { - async fn fetch(&mut self) -> Result<()> { + async fn fetch_async(&mut self) -> Result<()> { let mut buf = if self.cache.len() == self.block_offset + 1 { let mut key = 0usize; for (k, _v) in &self.cache { @@ -90,7 +171,7 @@ impl SrcBuffer { Ok(()) } - async fn getblk(&mut self) -> io::Result<()> { + async fn getblk_async(&mut self) -> io::Result<()> { trace!( "getsrcblk: curblkno={}, getblkno={}", self.src.curblkno, @@ -111,7 +192,7 @@ impl SrcBuffer { panic!("invalid blkno"); } - self.fetch().await?; + self.fetch_async().await?; continue; } } @@ -249,12 +330,57 @@ where process_async(cfg, ProcessMode::Encode, input, src, out).await } -#[derive(Clone, Copy)] +#[derive(Debug, Clone, Copy)] pub enum ProcessMode { Encode, Decode, } +pub fn process( + cfg: Xd3Config, + mode: ProcessMode, + mut input: R1, + src: R2, + mut output: W, +) -> io::Result<()> +where + R1: io::Read, + R2: io::Read, + W: io::Write, +{ + let mut state = ProcessState::new(cfg, src)?; + + use binding::xd3_rvalues::*; + + loop { + let res = state.step(mode); + debug!("step: mode={:?}, res={:?}", mode, res); + match res { + XD3_INPUT => { + if state.eof { + break; + } + state.read_input(&mut input)?; + } + XD3_OUTPUT => { + state.write_output(&mut output)?; + } + XD3_GETSRCBLK => { + state.src_buf.getblk()?; + } + XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { + // do nothing + } + XD3_TOOFARBACK | XD3_INTERNAL | XD3_INVALID | XD3_INVALID_INPUT | XD3_NOSECOND + | XD3_UNIMPLEMENTED => { + return Err(io::Error::new(io::ErrorKind::Other, format!("{:?}", res))); + } + } + } + + output.flush() +} + pub async fn process_async( cfg: Xd3Config, mode: ProcessMode, @@ -278,13 +404,13 @@ where if state.eof { break; } - state.read_input(&mut input).await?; + state.read_input_async(&mut input).await?; } XD3_OUTPUT => { - state.write_output(&mut output).await?; + state.write_output_async(&mut output).await?; } XD3_GETSRCBLK => { - state.src_buf.getblk().await?; + state.src_buf.getblk_async().await?; } XD3_GOTHEADER | XD3_WINSTART | XD3_WINFINISH => { // do nothing @@ -309,10 +435,7 @@ struct ProcessState { eof: bool, } -impl ProcessState -where - R: AsyncRead + Unpin, -{ +impl ProcessState { fn new(mut cfg: Xd3Config, src: R) -> io::Result { // log::info!("ProcessState::new config={:?}", cfg); @@ -354,6 +477,51 @@ where }) } + fn read_input(&mut self, mut input: R2) -> io::Result<()> + where + R2: io::Read, + { + let input_buf = &mut self.input_buf; + + let read_size = match input.read(input_buf) { + Ok(n) => n, + Err(_e) => { + debug!("error on read: {:?}", _e); + return Err(io::Error::new(io::ErrorKind::Other, "xd3: read_input")); + } + }; + debug!("read_size={}", read_size); + + { + let stream = self.stream.inner.as_mut(); + if read_size == 0 { + // xd3_set_flags + stream.flags |= binding::xd3_flags::XD3_FLUSH as i32; + self.eof = true; + } + // xd3_avail_input + stream.next_in = input_buf.as_ptr(); + stream.avail_in = read_size as u32; + } + + Ok(()) + } + + fn write_output(&mut self, mut output: W) -> io::Result<()> + where + W: io::Write, + { + let out_data = { + let stream = self.stream.inner.as_mut(); + unsafe { std::slice::from_raw_parts(stream.next_out, stream.avail_out as usize) } + }; + output.write_all(out_data)?; + + // xd3_consume_output + self.stream.inner.as_mut().avail_out = 0; + Ok(()) + } + fn step(&mut self, mode: ProcessMode) -> binding::xd3_rvalues { unsafe { let stream = self.stream.inner.as_mut(); @@ -363,8 +531,13 @@ where }) } } +} - async fn read_input(&mut self, mut input: R2) -> io::Result<()> +impl ProcessState +where + R: AsyncRead + Unpin, +{ + async fn read_input_async(&mut self, mut input: R2) -> io::Result<()> where R2: Unpin + AsyncRead, { @@ -393,7 +566,7 @@ where Ok(()) } - async fn write_output(&mut self, mut output: W) -> io::Result<()> + async fn write_output_async(&mut self, mut output: W) -> io::Result<()> where W: Unpin + AsyncWrite, { From 02e81227cfd5e2ca9a48eefde8b0ea311c7df109 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 18 Feb 2024 15:59:39 +0900 Subject: [PATCH 19/21] update deps --- Cargo.lock | 1299 ++++++++++++++++++++++++++++++++++------------------ Cargo.toml | 6 +- 2 files changed, 857 insertions(+), 448 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ba90be3..795d137 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,57 +1,222 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aho-corasick" -version = "0.7.8" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "743ad5a418686aad3b87fd14c43badd828cf26e214a00f92a384291cf22e1811" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] [[package]] name = "ansi_term" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi 0.3.8", + "winapi", ] [[package]] -name = "async-std" -version = "1.5.0" +name = "anstream" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96b09b5178381e0874812a9b157f7fe84982617e48f71f4e3235482775e5b540" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" + +[[package]] +name = "anstyle-parse" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + +[[package]] +name = "async-channel" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" +dependencies = [ + "concurrent-queue", + "event-listener 2.5.3", + "futures-core", +] + +[[package]] +name = "async-channel" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" +dependencies = [ + "concurrent-queue", + "event-listener 5.1.0", + "event-listener-strategy 0.5.0", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "538ecb01eb64eecd772087e5b6f7540cbc917f047727339a472dafed2185b267" +checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" dependencies = [ + "async-lock 3.3.0", "async-task", - "crossbeam-channel", - "crossbeam-deque", + "concurrent-queue", + "fastrand 2.0.1", + "futures-lite 2.2.0", + "slab", +] + +[[package]] +name = "async-global-executor" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" +dependencies = [ + "async-channel 2.2.0", + "async-executor", + "async-io 2.3.1", + "async-lock 3.3.0", + "blocking", + "futures-lite 2.2.0", + "once_cell", +] + +[[package]] +name = "async-io" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" +dependencies = [ + "async-lock 2.8.0", + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-lite 1.13.0", + "log", + "parking", + "polling 2.8.0", + "rustix 0.37.27", + "slab", + "socket2", + "waker-fn", +] + +[[package]] +name = "async-io" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" +dependencies = [ + "async-lock 3.3.0", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite 2.2.0", + "parking", + "polling 3.5.0", + "rustix 0.38.31", + "slab", + "tracing", + "windows-sys 0.52.0", +] + +[[package]] +name = "async-lock" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" +dependencies = [ + "event-listener 2.5.3", +] + +[[package]] +name = "async-lock" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +dependencies = [ + "event-listener 4.0.3", + "event-listener-strategy 0.4.0", + "pin-project-lite", +] + +[[package]] +name = "async-std" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" +dependencies = [ + "async-channel 1.9.0", + "async-global-executor", + "async-io 1.13.0", + "async-lock 2.8.0", "crossbeam-utils", + "futures-channel", "futures-core", "futures-io", - "futures-timer", + "futures-lite 1.13.0", + "gloo-timers", "kv-log-macro", "log", "memchr", - "mio", - "mio-uds", - "num_cpus", "once_cell", "pin-project-lite", "pin-utils", "slab", + "wasm-bindgen-futures", ] [[package]] name = "async-task" -version = "1.3.1" +version = "4.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ac2c016b079e771204030951c366db398864f5026f84a44dafb0ff20f02085d" -dependencies = [ - "libc", - "winapi 0.3.8", -] +checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atty" @@ -59,73 +224,103 @@ version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "hermit-abi", + "hermit-abi 0.1.19", "libc", - "winapi 0.3.8", + "winapi", ] [[package]] name = "autocfg" -version = "0.1.7" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bindgen" -version = "0.52.0" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1c85344eb535a31b62f0af37be84441ba9e7f0f4111eb0530f43d15e513fe57" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags", + "bitflags 2.4.2", "cexpr", - "cfg-if", "clang-sys", - "clap", - "env_logger", + "itertools", "lazy_static", "lazycell", "log", - "peeking_take_while", + "prettyplease", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", + "syn 2.0.49", "which", ] [[package]] name = "bitflags" -version = "1.2.1" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" + +[[package]] +name = "blocking" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +dependencies = [ + "async-channel 2.2.0", + "async-lock 3.3.0", + "async-task", + "fastrand 2.0.1", + "futures-io", + "futures-lite 2.2.0", + "piper", + "tracing", +] + +[[package]] +name = "bumpalo" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" +checksum = "d32a994c2b3ca201d9b263612a374263f05e7adde37c4707f693dcd375076d1f" [[package]] name = "cc" -version = "1.0.50" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] [[package]] name = "cexpr" -version = "0.3.6" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ "nom", ] [[package]] name = "cfg-if" -version = "0.1.10" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clang-sys" -version = "0.28.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" +checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" dependencies = [ "glob", "libc", @@ -134,13 +329,13 @@ dependencies = [ [[package]] name = "clap" -version = "2.33.0" +version = "2.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ "ansi_term", "atty", - "bitflags", + "bitflags 1.3.2", "strsim", "textwrap", "unicode-width", @@ -148,98 +343,133 @@ dependencies = [ ] [[package]] -name = "cloudabi" -version = "0.0.3" +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "concurrent-queue" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" dependencies = [ - "bitflags", + "crossbeam-utils", ] [[package]] -name = "crossbeam-channel" -version = "0.4.0" +name = "crossbeam-utils" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + +[[package]] +name = "either" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" + +[[package]] +name = "env_filter" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" dependencies = [ - "crossbeam-utils", + "log", + "regex", ] [[package]] -name = "crossbeam-deque" -version = "0.7.2" +name = "env_logger" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" +checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", + "anstream", + "anstyle", + "env_filter", + "humantime", + "log", ] [[package]] -name = "crossbeam-epoch" -version = "0.8.0" +name = "errno" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ - "autocfg", - "cfg-if", - "crossbeam-utils", - "lazy_static", - "memoffset", - "scopeguard", + "libc", + "windows-sys 0.52.0", ] [[package]] -name = "crossbeam-utils" -version = "0.7.0" +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "event-listener" +version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" dependencies = [ - "autocfg", - "cfg-if", - "lazy_static", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] -name = "env_logger" -version = "0.7.1" +name = "event-listener" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" +checksum = "b7ad6fd685ce13acd6d9541a30f6db6567a7a24c9ffd4ba2955d29e3f22c8b27" dependencies = [ - "atty", - "humantime", - "log", - "regex", - "termcolor", + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" +dependencies = [ + "event-listener 4.0.3", + "pin-project-lite", ] [[package]] -name = "fuchsia-cprng" -version = "0.1.1" +name = "event-listener-strategy" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" +dependencies = [ + "event-listener 5.1.0", + "pin-project-lite", +] [[package]] -name = "fuchsia-zircon" -version = "0.3.3" +name = "fastrand" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" dependencies = [ - "bitflags", - "fuchsia-zircon-sys", + "instant", ] [[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" +name = "fastrand" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "futures" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" dependencies = [ "futures-channel", "futures-core", @@ -252,9 +482,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" dependencies = [ "futures-core", "futures-sink", @@ -262,15 +492,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" [[package]] name = "futures-executor" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" dependencies = [ "futures-core", "futures-task", @@ -279,45 +509,66 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.4" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-lite" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" +dependencies = [ + "fastrand 1.9.0", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + +[[package]] +name = "futures-lite" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6" +checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" +dependencies = [ + "fastrand 2.0.1", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] [[package]] name = "futures-macro" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ - "proc-macro-hack", "proc-macro2", "quote", - "syn", + "syn 2.0.49", ] [[package]] name = "futures-sink" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" [[package]] name = "futures-task" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27" - -[[package]] -name = "futures-timer" -version = "2.0.2" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" [[package]] name = "futures-util" -version = "0.3.4" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" dependencies = [ "futures-channel", "futures-core", @@ -326,69 +577,122 @@ dependencies = [ "futures-sink", "futures-task", "memchr", + "pin-project-lite", "pin-utils", - "proc-macro-hack", - "proc-macro-nested", "slab", ] +[[package]] +name = "getrandom" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + [[package]] name = "glob" -version = "0.3.0" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "gloo-timers" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] [[package]] name = "heck" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" dependencies = [ "unicode-segmentation", ] [[package]] name = "hermit-abi" -version = "0.1.6" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" dependencies = [ "libc", ] +[[package]] +name = "hermit-abi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd" + +[[package]] +name = "home" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +dependencies = [ + "windows-sys 0.52.0", +] + [[package]] name = "humantime" -version = "1.3.0" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "instant" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ - "quick-error", + "cfg-if", ] [[package]] -name = "iovec" -version = "0.1.4" +name = "io-lifetimes" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ + "hermit-abi 0.3.6", "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", ] [[package]] -name = "kernel32-sys" -version = "0.2.2" +name = "js-sys" +version = "0.3.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" dependencies = [ - "winapi 0.2.8", - "winapi-build", + "wasm-bindgen", ] [[package]] name = "kv-log-macro" -version = "1.0.4" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb" +checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" dependencies = [ "log", ] @@ -401,582 +705,687 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "lazycell" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.66" +version = "0.2.153" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" +checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libloading" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -dependencies = [ - "cc", - "winapi 0.3.8", -] - -[[package]] -name = "log" -version = "0.4.8" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" +checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" dependencies = [ "cfg-if", + "windows-sys 0.48.0", ] [[package]] -name = "memchr" -version = "2.3.2" +name = "linux-raw-sys" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53445de381a1f436797497c61d851644d0e8e88e6140f22872ad33a704933978" +checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] -name = "memoffset" -version = "0.5.3" +name = "linux-raw-sys" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -dependencies = [ - "rustc_version", -] +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] -name = "mio" -version = "0.6.21" +name = "log" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" dependencies = [ - "cfg-if", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log", - "miow", - "net2", - "slab", - "winapi 0.2.8", + "value-bag", ] [[package]] -name = "mio-uds" -version = "0.6.7" +name = "memchr" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" -dependencies = [ - "iovec", - "libc", - "mio", -] +checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] -name = "miow" +name = "minimal-lexical" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", -] +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] -name = "net2" -version = "0.2.33" +name = "nom" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "cfg-if", - "libc", - "winapi 0.3.8", + "memchr", + "minimal-lexical", ] [[package]] -name = "nom" -version = "4.2.3" +name = "once_cell" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -dependencies = [ - "memchr", - "version_check", -] +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] -name = "num_cpus" -version = "1.12.0" +name = "parking" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" -dependencies = [ - "hermit-abi", - "libc", -] +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] -name = "once_cell" -version = "1.3.1" +name = "pin-project-lite" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] -name = "peeking_take_while" -version = "0.1.2" +name = "pin-utils" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] -name = "pin-project-lite" -version = "0.1.4" +name = "piper" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae" +checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +dependencies = [ + "atomic-waker", + "fastrand 2.0.1", + "futures-io", +] [[package]] -name = "pin-utils" -version = "0.1.0-alpha.4" +name = "pkg-config" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" [[package]] -name = "pkg-config" -version = "0.3.17" +name = "polling" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" +checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" +dependencies = [ + "autocfg", + "bitflags 1.3.2", + "cfg-if", + "concurrent-queue", + "libc", + "log", + "pin-project-lite", + "windows-sys 0.48.0", +] [[package]] -name = "proc-macro-error" -version = "0.4.9" +name = "polling" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052b3c9af39c7e5e94245f820530487d19eb285faedcb40e0c3275132293f242" +checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "rustversion", - "syn", + "cfg-if", + "concurrent-queue", + "pin-project-lite", + "rustix 0.38.31", + "tracing", + "windows-sys 0.52.0", ] [[package]] -name = "proc-macro-error-attr" -version = "0.4.9" +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "prettyplease" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d175bef481c7902e63e3165627123fff3502f06ac043d3ef42d08c1246da9253" +checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" dependencies = [ "proc-macro2", - "quote", - "rustversion", - "syn", - "syn-mid", + "syn 2.0.49", ] [[package]] -name = "proc-macro-hack" -version = "0.5.11" +name = "proc-macro-error" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" dependencies = [ + "proc-macro-error-attr", "proc-macro2", "quote", - "syn", + "syn 1.0.109", + "version_check", ] [[package]] -name = "proc-macro-nested" -version = "0.1.3" +name = "proc-macro-error-attr" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] [[package]] name = "proc-macro2" -version = "1.0.8" +version = "1.0.78" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548" +checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" dependencies = [ - "unicode-xid", + "unicode-ident", ] -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - [[package]] name = "quote" -version = "1.0.2" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" dependencies = [ "proc-macro2", ] [[package]] name = "rand" -version = "0.6.5" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "autocfg", "libc", "rand_chacha", - "rand_core 0.4.2", - "rand_hc", - "rand_isaac", - "rand_jitter", - "rand_os", - "rand_pcg", - "rand_xorshift", - "winapi 0.3.8", + "rand_core", ] [[package]] name = "rand_chacha" -version = "0.1.1" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "autocfg", - "rand_core 0.3.1", + "ppv-lite86", + "rand_core", ] [[package]] name = "rand_core" -version = "0.3.1" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "rand_core 0.4.2", + "getrandom", ] [[package]] -name = "rand_core" -version = "0.4.2" +name = "regex" +version = "1.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" +checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] [[package]] -name = "rand_hc" -version = "0.1.0" +name = "regex-automata" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" dependencies = [ - "rand_core 0.3.1", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] -name = "rand_isaac" -version = "0.1.1" +name = "regex-syntax" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -dependencies = [ - "rand_core 0.3.1", -] +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] -name = "rand_jitter" -version = "0.1.4" +name = "rustix" +version = "0.37.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" +checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" dependencies = [ + "bitflags 1.3.2", + "errno", + "io-lifetimes", "libc", - "rand_core 0.4.2", - "winapi 0.3.8", + "linux-raw-sys 0.3.8", + "windows-sys 0.48.0", ] [[package]] -name = "rand_os" -version = "0.1.3" +name = "rustix" +version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ - "cloudabi", - "fuchsia-cprng", + "bitflags 2.4.2", + "errno", "libc", - "rand_core 0.4.2", - "rdrand", - "winapi 0.3.8", + "linux-raw-sys 0.4.13", + "windows-sys 0.52.0", ] [[package]] -name = "rand_pcg" -version = "0.1.2" +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "slab" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ "autocfg", - "rand_core 0.4.2", ] [[package]] -name = "rand_xorshift" -version = "0.1.1" +name = "socket2" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ - "rand_core 0.3.1", + "libc", + "winapi", ] [[package]] -name = "rdrand" -version = "0.4.0" +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "structopt" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" dependencies = [ - "rand_core 0.3.1", + "clap", + "lazy_static", + "structopt-derive", ] [[package]] -name = "regex" -version = "1.3.4" +name = "structopt-derive" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8" +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", - "thread_local", + "heck", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "regex-syntax" -version = "0.6.14" +name = "syn" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b28dfe3fe9badec5dbf0a79a9cccad2cfc2ab5484bdb3e44cbd1ae8b3ba2be06" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] [[package]] -name = "rustc-hash" -version = "1.1.0" +name = "syn" +version = "2.0.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +checksum = "915aea9e586f80826ee59f8453c1101f9d1c4b3964cd2460185ee8e299ada496" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] [[package]] -name = "rustc_version" -version = "0.2.3" +name = "textwrap" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" dependencies = [ - "semver", + "unicode-width", ] [[package]] -name = "rustversion" -version = "1.0.2" +name = "tracing" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3bba175698996010c4f6dce5e7f173b6eb781fce25d2cfc45e27091ce0b79f6" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "proc-macro2", - "quote", - "syn", + "pin-project-lite", + "tracing-core", ] [[package]] -name = "scopeguard" -version = "1.0.0" +name = "tracing-core" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" [[package]] -name = "semver" -version = "0.9.0" +name = "unicode-ident" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -dependencies = [ - "semver-parser", -] +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] -name = "semver-parser" -version = "0.7.0" +name = "unicode-segmentation" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] -name = "shlex" -version = "0.1.1" +name = "unicode-width" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] -name = "slab" -version = "0.4.2" +name = "utf8parse" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] -name = "strsim" -version = "0.8.0" +name = "value-bag" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" +checksum = "126e423afe2dd9ac52142e7e9d5ce4135d7e13776c529d27fd6bc49f19e3280b" [[package]] -name = "structopt" -version = "0.3.9" +name = "vec_map" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1bcbed7d48956fcbb5d80c6b95aedb553513de0a1b451ea92679d999c010e98" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "waker-fn" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" dependencies = [ - "clap", - "lazy_static", - "structopt-derive", + "cfg-if", + "wasm-bindgen-macro", ] [[package]] -name = "structopt-derive" -version = "0.4.2" +name = "wasm-bindgen-backend" +version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "095064aa1f5b94d14e635d0a5684cf140c43ae40a0fd990708d38f5d669e5f64" +checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" dependencies = [ - "heck", - "proc-macro-error", + "bumpalo", + "log", + "once_cell", "proc-macro2", "quote", - "syn", + "syn 2.0.49", + "wasm-bindgen-shared", ] [[package]] -name = "syn" -version = "1.0.14" +name = "wasm-bindgen-futures" +version = "0.4.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5" +checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" dependencies = [ - "proc-macro2", "quote", - "unicode-xid", + "wasm-bindgen-macro-support", ] [[package]] -name = "syn-mid" -version = "0.5.0" +name = "wasm-bindgen-macro-support" +version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a" +checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.49", + "wasm-bindgen-backend", + "wasm-bindgen-shared", ] [[package]] -name = "termcolor" -version = "1.1.0" +name = "wasm-bindgen-shared" +version = "0.2.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" + +[[package]] +name = "web-sys" +version = "0.3.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" +checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" dependencies = [ - "winapi-util", + "js-sys", + "wasm-bindgen", ] [[package]] -name = "textwrap" -version = "0.11.0" +name = "which" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ - "unicode-width", + "either", + "home", + "once_cell", + "rustix 0.38.31", ] [[package]] -name = "thread_local" -version = "1.0.1" +name = "winapi" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ - "lazy_static", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] -name = "unicode-segmentation" -version = "1.6.0" +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] -name = "unicode-width" -version = "0.1.7" +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "unicode-xid" -version = "0.2.0" +name = "windows-sys" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] [[package]] -name = "vec_map" -version = "0.8.1" +name = "windows-sys" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.0", +] [[package]] -name = "version_check" -version = "0.1.5" +name = "windows-targets" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] [[package]] -name = "which" -version = "3.1.0" +name = "windows-targets" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5475d47078209a02e60614f7ba5e645ef3ed60f771920ac1906d7c1cc65024c8" +checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" dependencies = [ - "libc", + "windows_aarch64_gnullvm 0.52.0", + "windows_aarch64_msvc 0.52.0", + "windows_i686_gnu 0.52.0", + "windows_i686_msvc 0.52.0", + "windows_x86_64_gnu 0.52.0", + "windows_x86_64_gnullvm 0.52.0", + "windows_x86_64_msvc 0.52.0", ] [[package]] -name = "winapi" -version = "0.2.8" +name = "windows_aarch64_gnullvm" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] -name = "winapi" -version = "0.3.8" +name = "windows_aarch64_gnullvm" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] +checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" [[package]] -name = "winapi-build" -version = "0.1.1" +name = "windows_aarch64_msvc" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" +name = "windows_aarch64_msvc" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" [[package]] -name = "winapi-util" -version = "0.1.3" +name = "windows_i686_gnu" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" -dependencies = [ - "winapi 0.3.8", -] +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" +name = "windows_i686_gnu" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" [[package]] -name = "ws2_32-sys" -version = "0.2.1" +name = "windows_i686_msvc" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "xdelta3" diff --git a/Cargo.toml b/Cargo.toml index f64484a..4fb71a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,14 +22,14 @@ log = "0.4" [dev-dependencies] async-std = "1.2" -env_logger = "0.7" +env_logger = "0.11" futures= "0.3" structopt = "0.3" [build-dependencies] cc = "1.0" -rand = "0.6" -bindgen = "0.52" +rand = "0.8" +bindgen = "0.69" pkg-config = { version = "0.3", optional = true } [features] From 5e1341452e2aac220af761aaea4ea3ca95f1be26 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sun, 18 Feb 2024 16:01:33 +0900 Subject: [PATCH 20/21] term --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index b8d022c..a5b1dd1 100644 --- a/build.rs +++ b/build.rs @@ -61,8 +61,8 @@ fn main() { let bindings = builder .header("xdelta3/xdelta3/xdelta3.h") .parse_callbacks(Box::new(bindgen::CargoCallbacks)) - .whitelist_function("xd3_.*") - .whitelist_type("xd3_.*") + .allowlist_function("xd3_.*") + .allowlist_type("xd3_.*") .rustified_enum("xd3_.*") .generate() .expect("Unable to generate bindings"); From 46cf1ee725824a8bbdeef56f4ccb3ce4c92b97c7 Mon Sep 17 00:00:00 2001 From: Jihyun Yu Date: Sat, 18 May 2024 12:31:41 +0900 Subject: [PATCH 21/21] update deps --- Cargo.lock | 338 +++++++++++++++++++++++++++-------------------------- build.rs | 2 +- 2 files changed, 174 insertions(+), 166 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 795d137..86b525d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "aho-corasick" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] @@ -22,47 +22,48 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.12" +version = "0.6.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b09b5178381e0874812a9b157f7fe84982617e48f71f4e3235482775e5b540" +checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", + "is_terminal_polyfill", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" +checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" [[package]] name = "anstyle-parse" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -81,28 +82,26 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.2.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener 5.1.0", - "event-listener-strategy 0.5.0", + "event-listener-strategy 0.5.2", "futures-core", "pin-project-lite", ] [[package]] name = "async-executor" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" +checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a" dependencies = [ - "async-lock 3.3.0", "async-task", "concurrent-queue", - "fastrand 2.0.1", - "futures-lite 2.2.0", + "fastrand 2.1.0", + "futures-lite 2.3.0", "slab", ] @@ -112,12 +111,12 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ - "async-channel 2.2.0", + "async-channel 2.3.1", "async-executor", - "async-io 2.3.1", + "async-io 2.3.2", "async-lock 3.3.0", "blocking", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "once_cell", ] @@ -143,18 +142,18 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" +checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" dependencies = [ "async-lock 3.3.0", "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "parking", - "polling 3.5.0", - "rustix 0.38.31", + "polling 3.7.0", + "rustix 0.38.34", "slab", "tracing", "windows-sys 0.52.0", @@ -208,9 +207,9 @@ dependencies = [ [[package]] name = "async-task" -version = "4.7.0" +version = "4.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "atomic-waker" @@ -231,9 +230,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.1.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "bindgen" @@ -241,7 +240,7 @@ version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "cexpr", "clang-sys", "itertools", @@ -254,7 +253,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.49", + "syn 2.0.64", "which", ] @@ -266,40 +265,35 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.2" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" [[package]] name = "blocking" -version = "1.5.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88" dependencies = [ - "async-channel 2.2.0", + "async-channel 2.3.1", "async-lock 3.3.0", "async-task", - "fastrand 2.0.1", "futures-io", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "piper", - "tracing", ] [[package]] name = "bumpalo" -version = "3.15.0" +version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32a994c2b3ca201d9b263612a374263f05e7adde37c4707f693dcd375076d1f" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "cc" -version = "1.0.83" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" -dependencies = [ - "libc", -] +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" [[package]] name = "cexpr" @@ -344,15 +338,15 @@ dependencies = [ [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "concurrent-queue" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ "crossbeam-utils", ] @@ -365,9 +359,9 @@ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "either" -version = "1.10.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" +checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" [[package]] name = "env_filter" @@ -381,9 +375,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" dependencies = [ "anstream", "anstyle", @@ -394,9 +388,9 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" dependencies = [ "libc", "windows-sys 0.52.0", @@ -421,9 +415,9 @@ dependencies = [ [[package]] name = "event-listener" -version = "5.1.0" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7ad6fd685ce13acd6d9541a30f6db6567a7a24c9ffd4ba2955d29e3f22c8b27" +checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" dependencies = [ "concurrent-queue", "parking", @@ -442,11 +436,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.1.0", + "event-listener 5.3.0", "pin-project-lite", ] @@ -461,9 +455,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "futures" @@ -530,11 +524,11 @@ dependencies = [ [[package]] name = "futures-lite" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.0.1", + "fastrand 2.1.0", "futures-core", "futures-io", "parking", @@ -549,7 +543,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.49", + "syn 2.0.64", ] [[package]] @@ -584,9 +578,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "libc", @@ -631,9 +625,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.3.6" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "home" @@ -652,9 +646,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "instant" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if", ] @@ -665,11 +659,17 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.6", + "hermit-abi 0.3.9", "libc", "windows-sys 0.48.0", ] +[[package]] +name = "is_terminal_polyfill" +version = "1.70.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" + [[package]] name = "itertools" version = "0.12.1" @@ -681,9 +681,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.68" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" dependencies = [ "wasm-bindgen", ] @@ -711,18 +711,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libloading" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" +checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-sys 0.48.0", + "windows-targets 0.52.5", ] [[package]] @@ -733,24 +733,24 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "log" -version = "0.4.20" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" dependencies = [ "value-bag", ] [[package]] name = "memchr" -version = "2.7.1" +version = "2.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" [[package]] name = "minimal-lexical" @@ -782,9 +782,9 @@ checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" [[package]] name = "pin-utils" @@ -794,12 +794,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +checksum = "464db0c665917b13ebb5d453ccdec4add5658ee1adc7affc7677615356a8afaf" dependencies = [ "atomic-waker", - "fastrand 2.0.1", + "fastrand 2.1.0", "futures-io", ] @@ -827,14 +827,15 @@ dependencies = [ [[package]] name = "polling" -version = "3.5.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" +checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3" dependencies = [ "cfg-if", "concurrent-queue", + "hermit-abi 0.3.9", "pin-project-lite", - "rustix 0.38.31", + "rustix 0.38.34", "tracing", "windows-sys 0.52.0", ] @@ -847,12 +848,12 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "prettyplease" -version = "0.2.16" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" +checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" dependencies = [ "proc-macro2", - "syn 2.0.49", + "syn 2.0.64", ] [[package]] @@ -881,18 +882,18 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.35" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" dependencies = [ "proc-macro2", ] @@ -929,9 +930,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", @@ -941,9 +942,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" dependencies = [ "aho-corasick", "memchr", @@ -952,9 +953,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "rustc-hash" @@ -978,14 +979,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.31" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.5.0", "errno", "libc", - "linux-raw-sys 0.4.13", + "linux-raw-sys 0.4.14", "windows-sys 0.52.0", ] @@ -1057,9 +1058,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.49" +version = "2.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "915aea9e586f80826ee59f8453c1101f9d1c4b3964cd2460185ee8e299ada496" +checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f" dependencies = [ "proc-macro2", "quote", @@ -1105,9 +1106,9 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" [[package]] name = "utf8parse" @@ -1117,9 +1118,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "value-bag" -version = "1.7.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "126e423afe2dd9ac52142e7e9d5ce4135d7e13776c529d27fd6bc49f19e3280b" +checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" [[package]] name = "vec_map" @@ -1135,9 +1136,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "waker-fn" -version = "1.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" [[package]] name = "wasi" @@ -1147,9 +1148,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -1157,24 +1158,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.49", + "syn 2.0.64", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.41" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" dependencies = [ "cfg-if", "js-sys", @@ -1184,9 +1185,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -1194,28 +1195,28 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.49", + "syn 2.0.64", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.91" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "web-sys" -version = "0.3.68" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" dependencies = [ "js-sys", "wasm-bindgen", @@ -1230,7 +1231,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.31", + "rustix 0.38.34", ] [[package]] @@ -1270,7 +1271,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.0", + "windows-targets 0.52.5", ] [[package]] @@ -1290,17 +1291,18 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" dependencies = [ - "windows_aarch64_gnullvm 0.52.0", - "windows_aarch64_msvc 0.52.0", - "windows_i686_gnu 0.52.0", - "windows_i686_msvc 0.52.0", - "windows_x86_64_gnu 0.52.0", - "windows_x86_64_gnullvm 0.52.0", - "windows_x86_64_msvc 0.52.0", + "windows_aarch64_gnullvm 0.52.5", + "windows_aarch64_msvc 0.52.5", + "windows_i686_gnu 0.52.5", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.5", + "windows_x86_64_gnu 0.52.5", + "windows_x86_64_gnullvm 0.52.5", + "windows_x86_64_msvc 0.52.5", ] [[package]] @@ -1311,9 +1313,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" [[package]] name = "windows_aarch64_msvc" @@ -1323,9 +1325,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" [[package]] name = "windows_i686_gnu" @@ -1335,9 +1337,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.0" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" [[package]] name = "windows_i686_msvc" @@ -1347,9 +1355,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" [[package]] name = "windows_x86_64_gnu" @@ -1359,9 +1367,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" [[package]] name = "windows_x86_64_gnullvm" @@ -1371,9 +1379,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" [[package]] name = "windows_x86_64_msvc" @@ -1383,9 +1391,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.0" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "xdelta3" diff --git a/build.rs b/build.rs index a5b1dd1..cea8390 100644 --- a/build.rs +++ b/build.rs @@ -60,7 +60,7 @@ fn main() { } let bindings = builder .header("xdelta3/xdelta3/xdelta3.h") - .parse_callbacks(Box::new(bindgen::CargoCallbacks)) + .parse_callbacks(Box::new(bindgen::CargoCallbacks::new())) .allowlist_function("xd3_.*") .allowlist_type("xd3_.*") .rustified_enum("xd3_.*")